/* ===============================
   AMBAA SEVA FOUNDATION - DESIGNED BY CODE CRAFTER WEB SOLUTIONS & Developed By Suresh Kumar
   =============================== */

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Root Variables */
:root {
  --color-red: #fb9a25;
  --color-dark: #000000;
  --color-light-bg: #fff;
  --font-size-base: 16px;
  --radius: 8px;
  --transition-fast: 0.3s ease;
  --gray: #95a5a6;
  --light-gray: #bdc3c7;
  --font-primary: 'Raleway', sans-serif;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --text: #505050;
}
.gt_container-unisv1 a.glink span{
    color:var(--color-red) !important;
}
.text-danger{
    color:red;
    font-size:12px;
}
/* Typography */
body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    color: var(--color-dark);
    background-color: var(--color-light-bg);
    line-height: 1.6
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-red);
  font-weight: 700;
  line-height: 1.2;
  font-family: 'Ubuntu', sans-serif;
}

a {
  color: var(--color-blue);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--color-orange);
}

.pb-20 {
  padding-bottom: 20px !important;
}
.mt-10{
    margin-top:10px !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}
/* SweetAlert-Inspired Custom Alert Box */
.custom-alert {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    font-size: 16px;
    z-index: 99999;
    max-width: 400px;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInScale 0.4s ease-in-out;
}

.success-alert {
    border-left: 6px solid #4CAF50;
}

.error-alert {
    border-left: 6px solid #F44336;
}

.alert-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.alert-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 8px;
    color: #333;
}

.alert-message {
    text-align: center;
    color: #555;
    line-height: 1.5;
}
.d-none {
    display: none !important;
}
.alert-close {
    margin-top: 15px;
    background-color: #eee;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    color: green;
    border: 1px solid green;
    transition: background-color 0.2s ease;
}

    .alert-close:hover {
        background-color: #ddd;
    }

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: translate(-50%, -60%) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Buttons */
.btn-primary {
  background-color: var(--color-red);
  color: var(--color-light-bg);
}

.btn-primary:hover {
  background-color: var(--color-orange);
}

.btn-secondary {
  background-color: var(--color-purple);
  color: var(--color-light-bg);
}

.btn-secondary:hover {
  background-color: var(--color-red);
}

.subtitle {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-dark);
  text-transform: uppercase;
}
.about-text{
    font-size: 19px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom:10px;
    color:var(--text);
}

.title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--color-red);
  font-family: 'Ubuntu', sans-serif;
  line-height:1.7;
}

.description {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 20px;
}
.f-text {
    margin:10px auto;
    color:white;
    max-width: 1000px;
    text-align:center;
}
.ellipsis-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ellipsis-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ellipsis-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Utility Classes */
    .text-center {
  text-align: center !important;
}

.center {
  text-align: center;
}

.bg-pink {
  background-color: var(--color-red);
}

.bg-blue {
  background-color: var(--color-blue);
}

.bg-yellow {
  background-color: var(--color-red);
}

.bg-green {
  background-color: var(--color-green);
}

.bg-orange {
  background-color: var(--color-orange);
}

.bg-purple {
  background-color: var(--color-purple);
}

.bg-red {
  background-color: var(--color-red);
}

.bg-dark {
  background-color: var(--color-dark);
}

.bg-light {
    background-color: #f3f3f3;
}

.rounded {
  border-radius: var(--radius);
}

.container {
  width: 100%;
  max-width: 1230px;
  margin: 0 auto;
  padding: 60px 0;
}

/* Sticky header */
.navbar-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-light-bg);
}

.topbar {
  background-color: var(--color-dark);
  padding: 6px 0;
  font-size: 14px;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

    .topbar .left {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        color: var(--color-light-bg);
        font-family: 'Hind';
    }

.topbar span a {
  color: var(--color-light-bg);
}

.top-icons a {
  color: var(--color-dark);
  margin-left: 10px;
  transition: 0.3s;
  background-color: var(--color-light-bg);
  height: 30px;
  width: 30px;
  padding: 5px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.top-icons a:hover {
  color: var(--color-red);
  scale: 1.1;
}
.gtranslate_wrapper select {
    border-radius: 5px;
    color: white;
    padding: 5px 0;
    background: black;
}
.main-navbar {
  background-color: var(--color-light-bg);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.main-navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
  position: relative;
}

.logo {
  display: flex;
}

.logo img {
  max-height: 70px;
}

.mobile-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--color-dark);
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  color: var(--color-dark);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fast);
}

.nav-menu>li>a:hover {
  color: var(--color-red);
}

.submenu {
  position: absolute;
  background: var(--color-light-bg);
  top: 100%;
  left: 0;
  min-width: 240px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  z-index: 99;
  padding: 10px 0;
  list-style: none;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu li {
  padding: 0;
}

.submenu a {
  display: block;
  padding: 5px 15px;
  color: var(--color-dark);
  font-weight: normal;
}

.submenu i {
  margin-right: 10px;
}

.submenu a:hover {
  background: var(--color-red);
  color: var(--color-light-bg);
}

.donate-btn {
  background-color: var(--color-red);
  color: var(--color-light-bg) !important;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600;
  transition: var(--transition-fast);
}

.donate-btn:hover {
  background-color: var(--color-red);
}
/* ---------- HERO SECTION ---------- */
.hero-section {
    position: relative;
    background-image:url("../images/Education-top-10-blog-banner.webp");
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-section .container {
    position: relative;
    z-index: 2;
    max-width:1300px;
    padding: 0px !important;
}


/* overlay */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9); /* soft white overlay */
    z-index: 1;
}

/* ---------- BANNER FLEX ---------- */
.banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    height:500px;
}

/* collage image (single file you already have) */
.hero-img {
    height: 100%;
    width: 45%;
}

    .hero-img img {
        display:flex;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
/* ---------- TEXT CONTENT ---------- */
.hero-content {
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 20px;
}

    .hero-content h2 {
        font-size: 75px;
        font-family: 'Brush Script MT', cursive;
        margin: 0;
        font-weight: 400;
        color: #000;
        margin-bottom:-45px;
        z-index:1;
    }

    .hero-content h1 {
        font-size: 58px;
        font-weight: 900;
        color: #ff9900;
        margin: 0;
        text-transform: uppercase;
    }

    .hero-content p {
        font-size: 18px;
        line-height: 1.6;
        color: #111;
        margin: 0;
    }

.hero-cta {
    margin-top:5px;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 20px;
}

    .hero-cta a {
        line-height: normal;
        padding: 8px 20px;
        border: 1px solid orange;
        border-radius: 50px;
        text-decoration: none;
        color: orange;
        font-weight: 600;
    }

.banner-carousel .item {
    height: auto;
    display:none;
}

.banner-carousel .item {
    height: 520px;
    width: 100%;
    position: relative;
}

.banner-carousel .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

/* About Section  */
.about-foundation-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  /* gap: 20px; */
}

.about-images {
  position: relative;
  flex: 1 1 400px;
/*display:none;*/
}

.about-images .main-img {
  width: 100%;
  border-radius: 12px;
}

.about-images .sub-img {
  position: absolute;
  width: 180px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.about-content {
/*    text-align:center;*/
  flex: 1 1 550px;
}

.section-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-dark);
  text-transform: uppercase;
  /* margin-bottom: 10px; */
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-red);
/*  margin-bottom: 10px;*/
}

.section-text {
  text-align: justify;
  color: #505050;
  font-size: 16px;
  line-height: 1.7;
}

.button-group {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.btn-primary {
    background-color: var(--color-red);
    color: var(--color-light-bg);
    padding: 6px 20px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s ease;
    line-height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.btn-primary:hover {
  color: var(--color-light-bg);
  background-color: var(--color-red);
}

.btn-primary i {
  margin-right: 8px;
  transition: transform 0.3s ease;
}

.btn-outline {
  border: 1px solid var(--color-red);
  color: var(--color-red);
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-outline i {
  margin-right: 8px;
}

.btn-outline:hover {
  background-color: var(--color-red);
  color: var(--color-light-bg);
}

/* State Section  */
.stat-section {
  width: 100%;
  height: auto;
  background-image: url("../images/stat.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position:start;
  position: relative;
  z-index: 1;
  color: var(--color-light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

.stat-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  text-align: center;
  margin: auto;
  padding: 0 20px;
}

.stat-item {
  flex: 1 1 220px;
  min-width: 200px;
}
.stat-icon{
    height:50px;
}
.stat-icon i {
    font-size: 40px;
    color: var(--color-red);
    margin-bottom: 15px;
}
.stat-icon img{
    height:50px;
}
.stat-count {
    font-family: "Hind", sans-serif;
    height: 48px;
    font-size: 40px;
    font-weight: 900;
}

.red-plus {
  color: var(--color-red);
  font-weight: 900;
  font-size: 32px;
}

.stat-label {
  font-size: 20px;
  font-weight: 500;
}

.divider {
  width: 2px;
  height: 70px;
  background-color: var(--color-red);
  opacity: 0.8;
}

/* Focused Areda Section */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.focus-card {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  overflow: hidden;
  min-height: 300px;
  color: var(--color-light-bg);
  display: flex;
  align-items: flex-end;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.focus-card::before {
  content: '';
  display: block;
  padding-top: 60%;
  /* Maintains aspect ratio */
}

.focus-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: background 0.3s ease;
  z-index: 1;
}

.focus-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  text-align: center;
}

.focus-card:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.focus-card:hover .focus-overlay {
  background: rgba(0, 0, 0, 0.65);
}

.focus-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  font-size: 2rem;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-light-bg);
  transition: background 0.3s;
}

.focus-card:hover .focus-icon {
  background-color: var(--color-red);
  color: var(--color-light-bg);
}

.focus-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.focus-content p {
  font-size: 16px;
  color: #ddd;
  margin-bottom: 15px;
}

.focus-link {
  color: var(--color-light-bg);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s;
}

.focus-link i {
  margin-left: 6px;
  transition: transform 0.3s;
}

.focus-link:hover i {
  transform: translateX(5px);
}

/*Why Ambaa */
.why-section {
/*    display:none;*/
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top:20px;
}

.why-card {
    padding: 25px 20px;
    border-radius: 12px;
    color: #fff;
    text-align: center;
    transition: 0.3s ease;
}

    .why-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
    }

.why-icon {
    margin: 0 auto;
    height: 80px;
    width: 80px;
    color: red;
    justify-content: center;
    align-items: center;
    display: flex;
    background: white;
    font-size: 40px;
    border-radius: 50%;
    margin-bottom: 15px;
}
    .why-icon img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

/* NGO-Themed Backgrounds */
.bg-green {
    background: #16a34a;
}
/* Hope, Growth */
.bg-orange {
    background: #f97316;
}
/* Warmth, Care */
.bg-yellow {
    background: #eab308;
}
/* Positivity */
.bg-teal {
    background: #0d9488;
}
/* Trust, Stability */

.why-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color:white;
}

.why-card p {
    font-size: 14px;
    line-height: 1.6;
}
/* Gallery Section */
.gallery-item {
    text-align: center;
    padding: 10px;
    transition: transform 0.3s ease;
}

    .gallery-item:hover {
        transform: translateY(-2px);
    }

.gallery-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

.gallery-item:hover .gallery-image-wrapper {
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.gallery-image-wrapper img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.4s ease;
}

.overlay-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
    text-decoration: none;
}

    .overlay-icon i {
        color: var(--color-red);
    }

.gallery-image-wrapper:hover img {
    transform: scale(1.05);
}

.gallery-image-wrapper:hover .overlay-icon {
    opacity: 1;
}

/* ---- Custom Lightbox ---- */
.custom-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding: 20px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    text-align: center;
}

.custom-lightbox-img {
    max-width: 90%;
    max-height: 80vh;
    margin-top: 50px;
    border-radius: 10px;
}

.custom-lightbox-caption {
    margin-top: 15px;
    color: #fff;
    font-size: 15px;
}

/* Close & Nav Arrows */
.custom-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
}

.custom-lightbox-prev,
.custom-lightbox-next {
    position: absolute;
    top: 50%;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    padding: 10px;
    user-select: none;
}

.custom-lightbox-prev {
    left: 20px;
}

.custom-lightbox-next {
    right: 20px;
}

    .custom-lightbox-prev:hover,
    .custom-lightbox-next:hover {
        color: var(--color-red);
    }

/*Testimonial */
.testimonial-section {
    background: #f9fafc;
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.testimonial-item {
    background: #fff;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom:10px
}

    .testimonial-item:hover {
        transform: translateY(-2px);
    }

.testimonial-stars {
    color: #f6b400;
    margin-bottom: 15px;
    text-align: left;
}

.testimonial-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
    text-align: left;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

    .testimonial-author i {
        font-size: 35px;
        color: #444;
    }

    .testimonial-author h4 {
        margin: 0;
        font-weight: 500;
        font-size: 16px;
    }

    .testimonial-author span {
        display: block;
        font-size: 14px;
        color: #777;
    }

/* CTA Section  */
.cta-section {
  background-color: var(--color-dark);
}

.cta-wrapper {
  background-color: var(--color-red);
  gap: 20px;
  padding: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
}

.cta-content {
  flex: 1 1 60%;
  padding-right: 20px;
}

.cta-subtitle {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-light-bg);
  text-transform: uppercase;
}

.cta-title {
  font-size: 32px;
  font-weight: 700;
  font-family: 'Ubuntu', sans-serif;
  color: var(--color-light-bg);
}

.cta-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-light-bg);
}

.cta-action {
  flex: 1 1 30%;
  text-align: right;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 15px;
}

.cta-btn {
  background-color: var(--color-light-bg);
  color: var(--color-red);
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background-color: var(--color-light-bg);
  color: var(--color-red);
}

.cta-donate {
  background-color: var(--color-light-bg);
  color: var(--color-red);
}

/* Blog Section  */
.pro-blog-card {
  background:white;
  border-radius: 14px;
  overflow: hidden;
/*  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);*/
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pro-blog-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.pro-blog-body {
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pro-blog-tag {
    line-height:normal;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-light-bg);
  background: var(--color-red);
  padding: 4px 10px;
  border-radius: 30px;
  width: fit-content;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.pro-blog-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.pro-blog-excerpt {
  font-size: 0.95rem;
  color: #555;
  flex-grow: 1;
  margin-bottom: 10px;
}

.pro-blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.author-date span {
  display: inline-block;
  margin-right: 12px;
  font-size: 0.85rem;
  color: var(--color-red);
  line-height:normal;
}
.author-date-blog {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: orange;
    padding: 5px 10px;
    color: white !important;
    font-family: 'Hind', sans-serif;
}
.read-more-btn {
    text-decoration: none;
    font-weight: 600;
    color: var(--color-red);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
  color: var(--color-dark);
}

/* Footer Section  */
.footer-dark {
  background-color: var(--color-dark);
  color: var(--color-light-bg);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1.2fr 1.2fr 1.2fr;
  gap: 20px;
  margin: 0 auto;
}

.footer-about .footer-logo {
  max-width: 100%;
/*  margin-bottom: 15px;*/
  border-radius: 5px;
}

.footer-about p {
  display: none;
  line-height: 1.7;
  margin-bottom: 20px;
}
.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
}
.social-icons a {
    font-size: 18px;
    color: var(--color-light-bg);
    background-color: #222;
    padding: 10px;
    margin: 5px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    transition: 0.3s;
}

.social-icons a:hover {
  background-color: var(--color-red);
  color: var(--color-light-bg);
}
.admin-login {
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--color-red);
    margin-top: 5px;
    width: 100%;
}
.footer-links h4,
.footer-contact h4 {
    color: var(--color-light-bg);
    font-size: 18px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--color-red);
    display: inline-block;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.footer-links a,
.footer-contact a {
  color: #ccc;
  text-decoration: none;
  margin-left: 8px;
  transition: 0.3s;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--color-red);
}

.red-icon {
  color: var(--color-red);
  min-width: 20px;
}

.footer-bottom {
  border-top: 1px solid #222;
  padding: 10px;
  text-align: center;
  font-size: 14px;
  color: #888;
}

.footer-bottom-links {
  margin-top: 2px;
}

.footer-bottom-links a {
  color: #ccc;
  margin: 0 10px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-bottom-links a:hover {
  color: var(--color-red);
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: #bdbbbb;
    font-family: 'Hind';
}

.footer-bottom p>a>img {
  display: inline-block;
  height: 45px;
  vertical-align: middle;
  margin-left: 5px;
}

/* Blog Page  */
.breadcrumb-section {
  position: relative;
  background: url('../images/breadcrumb.webp') center/cover no-repeat;
  color: var(--color-light-bg);
  z-index: 1;
}
.bd-women {
    position: relative;
    background: url('../images/Women Empowerment.webp') center/cover no-repeat;
    color: var(--color-light-bg);
    z-index: 1;
}
.bd-environment {
    position: relative;
    background: url('../images/enviroment.webp') center/cover no-repeat;
    color: var(--color-light-bg);
    z-index: 1;
}
.bd-road {
    position: relative;
    background: url('../images/Road Safety.webp') center/cover no-repeat;
    color: var(--color-light-bg);
    z-index: 1;
}
.bd-medical {
    position: relative;
    background: url('../images/Meedical.webp') center/cover no-repeat;
    color: var(--color-light-bg);
    z-index: 1;
}
.bd-children {
    position: relative;
    background: url('../images/Children Awareness.webp') center/cover no-repeat;
    color: var(--color-light-bg);
    z-index: 1;
}
.bd-nutrition {
    position: relative;
    background: url('../images/nutrition.webp') center/cover no-repeat;
    color: var(--color-light-bg);
    z-index: 1;
}
.bd-education {
    position: relative;
    background: url('../images/education.webp') center/cover no-repeat;
    color: var(--color-light-bg);
    z-index: 1;
}
.bd-team {
    position: relative;
    background: url('../images/Our Team.webp') center/cover no-repeat;
    color: var(--color-light-bg);
    z-index: 1;
}
.bd-mission {
    position: relative;
    background: url('../images/Mission.webp') center/cover no-repeat;
    color: var(--color-light-bg);
    z-index: 1;
}
.breadcrumb-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 17, 0.75);
  z-index: -1;
}

.breadcrumb {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.95rem;
  align-items: center;
}

.breadcrumb li {
  list-style: none;
}

.breadcrumb li:not(:last-child)::after {
  content: "›";
  color: var(--color-red);
  margin: 0 6px;
}

.breadcrumb a {
  color: var(--color-red);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--color-red);
}

.breadcrumb-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-light-bg);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  margin-top: 5px;
}

/* Blog Layout */
.blog-layout {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 20px;
  padding: 40px 0;
}

/* Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-widget {
  color: var(--color-dark);
  padding: 20px;
  border-radius: 10px;
  height: fit-content;
  border: 1px solid #e6e5e5;
}

.sidebar-widget h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--color-red);
  font-weight: 600;
  border-bottom: 1px solid #444;
  padding-bottom: 5px;
}

.search-widget input {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #e6e5e5;
  background: var(--color-light-bg);
  color: var(--color-dark);
}

.categories-widget ul,
.recent-posts ul {
  list-style: none;
  padding: 0;
}

.recent-posts ul li a {
  color: var(--color-dark);
}

.categories-widget li,
.recent-posts li {
  padding: 10px 0;
  color: #eee;
  font-size: 0.95rem;
  border-bottom: 1px solid #e6e5e5;
}

.recent-posts li a i {
  margin-right: 8px;
  color: var(--color-red);
}

/* Blog Grid */
.blog-main-content {
  display: flex;
  flex-direction: column;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

/* Blog Detail Page  */
.blog-detail-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
}

.publish-date {
    margin-top: 10px;
    color: #424242;
    padding-top: 10px;
    display: flex;
    font-size: 14px;
    justify-content: start;
    gap: 10px;
    align-items: center;
}

.blog-detail-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-red);
  margin: 15px 0;
}

/* Video Page  */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
}

.video-card {
  background: var(--color-light-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0px 3px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.video-thumbnail {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
  transform: scale(1.05);
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.video-card:hover .play-overlay {
  background: rgba(0, 0, 0, 0.6);
}

.play-btn {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.play-btn:hover {
  background: var(--color-light-bg);
  transform: scale(1.1);
}

.play-btn::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 20px solid var(--color-red);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 5px;
}

.video-content {
  padding: 20px;
}

.video-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.4;
}

.video-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  /* margin-bottom: 15px; */
}

/* .video-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #999;
  font-size: 0.85rem;
}

.duration {
  background: var(--color-red);
  color:var(--color-light-bg);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
} */

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  position: relative;
  margin: 5% auto;
  width: 90%;
  max-width: 900px;
  background: transparent;
}

.close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--color-light-bg);
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: #667eea;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  border-radius: 10px;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Gallery Page  */
.gallerypage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

/* Polaroid-style photo frame */
.gallerypage-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  background: var(--color-light-bg);
  padding: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallerypage-item:hover {
  transform: scale(1.02) rotate(-1deg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallerypage-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease;
}

.gallerypage-item:hover .gallerypage-img {
  transform: scale(1.05);
}

.gallerypage-overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallerypage-item:hover .gallerypage-overlay {
  opacity: 1;
}

.gallerypage-icon {
  font-size: 2rem;
  color: var(--color-red);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

/* Lightbox Modal */
.gallerypage-lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.gallerypage-lightbox-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: var(--radius);
  box-shadow: var(--box-shadow);
}

.gallerypage-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: var(--color-light-bg);
  cursor: pointer;
}

.gallerypage-prev,
.gallerypage-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: var(--color-light-bg);
  padding: 10px;
  cursor: pointer;
  transition: var(--transition);
}

.gallerypage-prev:hover,
.gallerypage-next:hover {
  color: var(--color-red);
}

.gallerypage-prev {
  left: 30px;
}

.gallerypage-next {
  right: 30px;
}

/* News & Publication page  */

.newspub-hero {
  background: var(--bg-light);
  text-align: justify;
}

/* Tabs */
.news-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px auto;
}

.tab-btn {
  padding: 10px 20px;
  background: #eee;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--color-red);
  color: var(--color-light-bg);
}

/* Tab Content */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.news-section h2 {
  text-align: center;
}

/* News Grid */
.news-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 20px;
}

.news-card {
  background: var(--color-light-bg);
  box-shadow: var(--box-shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.news-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-content {
  padding: 15px;
}

.news-category {
  font-size: 0.75rem;
  color: var(--color-blue);
  font-weight: bold;
  text-transform: uppercase;
}

.news-heading {
  font-size: 1.2rem;
  margin: 10px 0;
}

.news-snippet {
  font-size: 0.95rem;
  color: #555;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.news-date {
  font-size: 0.9rem;
  color: #8b8b8b;
}

.news-readmore {
  color: var(--color-red);
  font-weight: bold;
  font-size: 0.9rem;
  text-decoration: none;
}

/* Publications */
.publications-section h2,
.media-mentions h2 {
  text-align: center;
  margin-bottom: 20px;
}

.publications-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pub-item {
  display: flex;
  justify-content: start;
  gap: 20px;
  align-items: center;
  background: var(--color-light-bg);
  padding: 15px 20px;
  box-shadow: var(--box-shadow);
  border-radius: var(--radius);
}

.pub-icon {
  font-size: 2rem;
  color: var(--color-red);
  margin-right: 15px;
}

.btn-download {
  background: var(--color-red);
  color: var(--color-light-bg);
  padding: 6px 12px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: var(--transition);
}

.btn-download:hover {
  background: var(--color-red);
  color: var(--color-light-bg);
}

/* Media */
.media-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.media-card {
  background: var(--color-light-bg);
  padding: 10px;
  box-shadow: var(--box-shadow);
  border-radius: var(--radius);
  text-align: center;
}

.media-logo {
  width: 100%;
  object-fit: cover;
  height: auto;
  margin-bottom: 10px;
}

/* CTA */
.nsf-cta-section {
    position: relative;
    background-image: url('../images/history-stat.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    z-index: 1;
    overflow: hidden;
    text-align:center;
}
    .nsf-cta-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.8);
        z-index: 0;
    }
.nsf-cta-container {
    display:flex;
    justify-content:center;
    align-items:center;
    height: 350px;
}
.nsf-cta-section > * {
    position: relative;
    z-index: 1;
}
.nsf-cta-heading {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-light-bg);
}

.nsf-cta-text {
  font-size: 1.05rem;
  margin-bottom: 15px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.nsf-newsletter-form {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.nsf-newsletter-form input {
  padding: 12px 16px;
  border: none;
  border-radius: 30px;
  width: 280px;
  max-width: 100%;
  font-size: 1rem;
}

.nsf-newsletter-form a {
  padding: 12px 24px;
  border: none;
  border-radius: 30px;
  background: var(--color-light-bg);
  color: var(--color-red);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height:normal;
  transition: background 0.3s ease, color 0.3s ease;
}
    .nsf-newsletter-form button {
        padding: 12px 24px;
        border: none;
        border-radius: 30px;
        background: var(--color-light-bg);
        color: var(--color-red);
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: background 0.3s ease, color 0.3s ease;
    }

/* Awards & Recognition page  */
.asf-awards-page {
  background: var(--color-light-bg);
  color: var(--text);
}

.asf-awards-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
}

.asf-stat-box {
  text-align: center;
  flex: 1 1 200px;
}

.asf-stat-box h2 {
  font-size: 2.4rem;
  color: var(--color-red);
  margin-bottom: 8px;
}

.asf-stat-box p {
  font-size: 1rem;
  color: #444;
}

.asf-awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
}

.asf-award-card {
  background: var(--color-light-bg);
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.asf-award-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.asf-award-card h3 {
  font-size: 1rem;
  margin: 15px 0 10px;
  font-weight: 600;
  color: var(--color-dark);
}

.asf-award-card p {
  font-size: 0.95rem;
  color: #666;
}

.asf-icon {
  font-size: 3rem;
  color: var(--color-red);
}

/* Timeline */
.asf-awards-timeline {
  text-align: center;
}

.timeline-wrapper {
  position: relative;
  overflow-x: auto;
  padding: 20px 20px 0 20px;
}

.timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, #e0e0e0, #ccc);
  transform: translateY(-50%);
}

.timeline-items {
  position: relative;
  display: flex;
  gap: 60px;
  padding: 0 20px;
}

.timeline-item {
  border: 1px dotted var(--color-red);
  position: relative;
  background: var(--color-light-bg);
  border-radius: 8px;
  padding: 20px;
  min-width: 250px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  scroll-snap-align: start;
  transition: transform .3s;
}

.timeline-item:hover {
  transform: translateY(-5px);
}

.timeline-item .icon img {
  position: absolute;
  top: 50%;
  left: -28px;
  background: var(--color-red);
  color: var(--color-light-bg);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  padding: 5px;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  font-size: 1.2rem;
}

.timeline-item h4 {
  margin-top: 8px;
  font-size: 1.1rem;
  font-weight: 600;
}

.timeline-item p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Media Mentions */
.asf-media-mentions {
  max-width: 1200px;
  margin: 60px auto;
  text-align: center;
  padding: 0 20px;
}

/* Grid Layout */
.media-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* Individual Media Card */
.media-card {
  background: var(--color-light-bg);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
  text-align: left;
}

.media-card:hover {
  transform: translateY(-5px);
}

/* Media Logo */
.media-card img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  background: #f2f2f2;
  padding: 10px;
}

.media-content h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 600;
  color: #222;
}

.media-content p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 10px;
}

.media-year {
  display: inline-block;
  background-color: var(--color-red);
  color: var(--color-light-bg);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
}

/* Valunteer Page  */
.volunteer-awards-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.volunteer-stat-box {
  flex: 1 1 200px;
  text-align: center;
}

.volunteer-stat-box h2 {
  font-size: 2.5rem;
  color: var(--color-red);
}

.volunteer-stat-box p {
  font-size: 1rem;
  margin-top: 5px;
  color: var(--color-light-bg);
}

/* ROLES SECTION */
.volunteer-role-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.role-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  background: var(--color-light-bg);
  padding:15px;
  transition: box-shadow 0.3s ease;
}

.role-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.role-card h4 {
  color: var(--color-dark);
  margin-bottom: 10px;
}

.role-card P {
  color: var(--text);
}

.role-icon {
  font-size: 1.5rem;
  background-color: var(--color-red);
  padding: 20px;
  display: inline-flex;
  color: var(--color-light-bg);
  border-radius: 10px;
  margin-bottom: 15px;
  align-items: center;
  justify-content: center;
}

/* TESTIMONIAL SECTION */

.testimonial-card {
  background: #1a1a1a;
  padding: 25px;
  border-left: 5px solid var(--color-red);
  border-radius: 8px;
  font-style: italic;
  margin-top: 20px;
  color: var(--color-light-bg);
}

.asf-volunteer-section {
    padding: 60px 0;
}

.asf-volunteer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.asf-volunteer-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

.asf-volunteer-image {
  flex: 1;
  min-width: 320px;
}

.asf-volunteer-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  max-height: 590px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.asf-volunteer-form-wrapper {
  flex: 1.2;
  min-width: 350px;
}

.asf-volunteer-heading {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-red);
}

.asf-volunteer-subtext {
  font-size: 1rem;
  color: #444;
  margin-bottom: 20px;
}

.asf-volunteer-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.asf-volunteer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
    .asf-volunteer-row > div {
        flex: 1 1 calc(50% - 10px);
    }


.asf-volunteer-form input,
.asf-volunteer-form select,
.asf-volunteer-form textarea {
  flex: 1;
  padding: 11px 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 0.9rem;
  width: 100%;
  transition: border-color 0.3s ease;
}

.asf-volunteer-form input:focus,
.asf-volunteer-form select:focus,
.asf-volunteer-form textarea:focus {
  border-color: var(--color-red);
  outline: none;
}

.asf-volunteer-form textarea {
  resize: vertical;
  min-height: 120px;
}

.asf-volunteer-file {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.asf-volunteer-file label {
  font-weight: 500;
  font-size: 0.95rem;
  color: #333;
}

.asf-volunteer-form input[type="file"] {
  padding: 10px;
  background: #f9f9f9;
  border: 1px dashed #ccc;
  cursor: pointer;
}

.asf-volunteer-btn {
  background-color: var(--color-red);
  color: var(--color-light-bg);
  padding: 14px 28px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.asf-volunteer-btn:hover {
  background-color: var(--color-red);
}

.asf-faq-section {
  background-color: var(--color-light-bg);
}

.asf-faq-container {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.faq-subtile {
  text-align: center;
  color: var(--text);
  margin: 10px 0;
}

.asf-faq-list {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.asf-faq-item {
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.asf-faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  padding: 15px 20px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: start;
  cursor: pointer;
  color: #222;
  font-family: Raleway;
  gap: 20px;
}

.asf-faq-question i {
  margin-right: 10px;
  color: var(--color-red);
  font-size: 1.2rem;
}

.faq-icon i {
  transition: transform 0.3s ease;
}

.asf-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
  font-size: 0.95rem;
  color: #333;
  background: var(--color-light-bg);
  border-top: 1px solid #eee;
}

.asf-faq-item.active .asf-faq-answer {
  padding: 15px 20px;
  max-height: 500px;
}

.asf-faq-item.active .faq-icon i {
  transform: rotate(180deg);
}

/* Our History Page  */
.asf-history-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.asf-history-text {
    text-align: center;
    flex: 1;
    min-width: 450px;
}

.asf-history-image {
/*  flex: 1;*/
  min-width: 250px;
  background-color: var(--color-light-bg);
  display:none;
}

.asf-history-image img {
  width: 100%;
  height: 100%;
  box-shadow: var(--box-shadow);
  border-radius: 10px;
}

/* MISSION EVOLUTION */
.asf-mission-evolution {
  display:none;
  position: relative;
  background: url('../images/history-mile.webp') center top/cover no-repeat;
  color: #fff;
  z-index: 1;
  overflow: hidden;
}

.asf-mission-evolution::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 0;
}

.asf-mission-evolution>* {
  position: relative;
  z-index: 1;
}

.asf-evolution-carousel .asf-evolution-card {
  background: var(--color-light-bg);
  padding: 25px;
  border-radius: var(--radius);
  border-left: 4px solid var(--color-red);
  margin: 10px 10px 0px 10px;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
  height: 100%;
}
.asf-evolution-card h4 {
  font-size: 1.2rem;
  color: var(--color-red);
  margin-bottom: 12px;
}

.asf-evolution-card p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}

/* TIMELINE */
.asf-timeline-list-alt {
  position: relative;
  padding: 0;
  margin: 30px 0 0 0;
  list-style: none;
}

.asf-timeline-list-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: var(--color-red);
  transform: translateX(-50%);
}

.asf-timeline-item {
  position: relative;
  width: 50%;
  padding: 0px 30px;
  box-sizing: border-box;
}
.mile-img-container-2 {
    display: flex;
    justify-content: start; /* align at left */
    padding: 10px;
}
.mile-img-container {
    display: flex;
    justify-content:flex-end; /* align at left */
    padding: 10px;
}
.mile-img {
    background-color:orange;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover; 
}
.asf-timeline-item.left {
  left: 0;
  text-align: right;
}
    .asf-timeline-item.right {
        display: flex;
        justify-content:left;
        flex-direction:column;
        left: 50%;
        text-align: left;
    }

.asf-timeline-content {
  position: relative;
  background: #fff;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--box-shadow);
  border: 1px dotted var(--color-red);
  color: var(--text);
  z-index: 1;
}

.asf-timeline-content span {
  font-weight: bold;
  color: var(--color-red);
  font-size: 1.2rem;
  display: block;
  margin-bottom: 8px;
}

.asf-timeline-item::before {
  content: '';
  position: absolute;
  top: 28px;
  width: 14px;
  height: 14px;
  background: var(--color-red);
  border-radius: 50%;
  border: 3px solid #fff;
  z-index: 2;
}

.asf-timeline-item.left::before {
  right: -7px;
}

.asf-timeline-item.right::before {
  left: -7px;
}


/* LEADERSHIP */
.asf-directors-message-section {
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.asf-directors-grid {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.asf-director-card {
  display: flex;
  align-items: center;
  padding: 20px;
  background: var(--bg-light);
  border-radius: var(--radius);
  box-shadow: var(--box-shadow);
  border: 1px solid var(--border-light);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.asf-director-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-red);
  transform: scaleY(0);
  transition: transform 0.4s ease;
}

.asf-director-card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.asf-director-card:hover::before {
  transform: scaleY(1);
}

.asf-director-card.left {
  flex-direction: row;
}

.asf-director-card.right {
  flex-direction: row-reverse;
}

.asf-director-image {
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  position: relative;
}

.asf-director-image::before {
  content: '';
  position: absolute;
  inset: -5px;
  background: linear-gradient(45deg, var(--color-red), #ffa600, #f87171, var(--color-red));
  border-radius: 50%;
  z-index: 1;
  animation: rotate 3s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.asf-director-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  border: 1px solid white;
  transition: transform 0.3s ease;
}

.asf-director-card:hover .asf-director-image img {
  transform: scale(1.05);
}

.asf-director-content {
  flex: 1;
  padding: 0 20px;
}

.asf-director-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-red);
  margin-top: 8px;
  letter-spacing: -0.02em;
}

.asf-director-title {
  color: var(--text);
  margin-top: 5px;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

.asf-director-msg {
  font-size: 1rem;
  color: var(--text);
  font-style: italic;
  position: relative;
  /* padding-left: 20px; */
}

.asf-director-msg::before {
  content: '"';
  font-size: 3rem;
  color: var(--color-red);
  position: absolute;
  left: -25px;
  top: -15px;
  opacity: 0.3;
  font-family: Georgia, serif;
}

/* Quote decoration */
.quote-decoration {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  opacity: 0.1;
  color: var(--color-red);
}

/* Accessibility improvements */
.asf-director-card:focus-within {
  outline: 2px solid var(--color-red);
  outline-offset: 4px;
}

/* IMPACT */
.asf-history-impact {

  position: relative;
  background-image: url('../images/history-stat.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  z-index: 1;
  overflow: hidden;
}

.asf-history-impact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 0;
}

.asf-history-impact>* {
  position: relative;
  z-index: 1;
}

.asf-impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.asf-impact-box {
  /* background: rgba(255, 255, 255, 0.1); */
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.asf-impact-box h3 {
  font-size: 2.5rem;
  color: #f39c12;
  margin-bottom: 10px;
}

.asf-impact-box p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

/* Mission & Visison Page  */
.asf-mission-vision-cards {
  background: #f5f5f5;
}

.asf-cards-wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.asf-card {
  background: var(--color-light-bg);
  border: 1px solid var(--color-red);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  flex: 1 1 600px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  position: relative;
  text-align: justify;
  transition: transform 0.3s ease;
}

.asf-step-badge {
  position: absolute;
  top: -15px;
  right: 30px;
  background: var(--color-light-bg);
  color: var(--color-red);
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: bold;
  border-radius: 50px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.asf-card-icon {
  /* border: 1px solid var(--color-red); */
  width: fit-content;
  height: 60px;
  width: 60px;
  margin-bottom: 15px;
}

.asf-card-icon img {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.asf-card-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--color-dark);
}

.asf-values-section {
  background-color: #fff;
  text-align: center;
}

.asf-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.asf-value-box {
  border: 1px solid var(--color-red);
  background: #f5f5f5;
  padding: 20px 10px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.asf-value-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.asf-value-box img {
  height: 50px;
  width: 50px;
}

.asf-value-box h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.asf-value-box p {
  font-size: 0.95rem;
  color: var(--text);
}

/* Our Team Page  */
.asf3-team-section {
  font-family: var(--font-primary);
  background-color: var(--color-light-bg);
  color: var(--text);
}

.asf3-team-subtitle {
  font-size: 1.5rem;
  color: var(--color-red);
  font-weight: 600;
  border-left: 5px solid var(--color-red);
  padding-left: 12px;
}

.asf3-team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
  margin-top: 20px;
}

.asf3-team-card {
  border: 1px dotted var(--color-red);
  background: var(--color-light-bg);
  border-radius: var(--radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  padding: 20px;
  flex: 1 1 250px;
  max-width: 600px;
  transition: var(--transition-fast);
}

.asf3-team-card:hover {
  transform: translateY(-5px);
}

.asf3-team-card img {
  border: 1px solid var(--color-red);
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 10px;
}

.asf3-team-card h3 {
  font-size: 1.2rem;
  color: var(--color-dark);
  margin-bottom: 5px;
}

.asf3-team-card p {
  font-size: 0.95rem;
  color: var(--color-red);
}

/* Contact Us page  */

/* 3. Contact Form */
.asf-contact-form-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  gap: 20px;
}

.asf-contact-form-wrapper h2 {
  text-align: center;
  color: var(--color-red);
  margin-bottom: 20px;
}

.contact-form,
.map {
  width: 50%;
  background-color: #f9f9f9;
  padding: 30px;
}

.asf-contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.asf-form-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.asf-form-group {
  flex: 1;
  min-width: 240px;
  display: flex;
  flex-direction: column;
}

.asf-form-group label {
  margin-bottom: 3px;
  font-weight: 500;
  color: var(--color-dark);
}

.asf-contact-form input,
.asf-contact-form select,
.asf-contact-form textarea {
  width: 100%;
  padding: 8px;
  font-family: inherit;
  border: 1px solid var(--light-gray);
  border-radius: 5px;
  font-size: 0.9rem;
}

.asf-contact-form textarea {
  resize: vertical;
}

.asf-contact-form button {
  background-color: var(--color-red);
  color: white;
  padding: 10px 30px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}

.asf-contact-form button:hover {
  background-color: #e78c1e;
}
.contact-details {
    width: 50%;
    background-color: #f9f9f9;
    padding: 30px;
}

    .contact-details h2 {
        color: var(--color-red);
        margin-bottom: 20px;
        text-align: left;
    }

.asf-contact-info {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

    .asf-contact-info li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: 0.95rem;
        color: var(--color-dark);
        line-height: 1.4;
    }

    .asf-contact-info i {
        background: var(--color-red);
        color: #fff;
        font-size: 1.1rem;
        padding: 10px;
        border-radius: 10px;
        min-width: 40px;
        text-align: center;
    }

    .asf-contact-info strong {
        color: var(--color-red);
        font-weight: 600;
    }

.asf-social-links {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

    .asf-social-links a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: #fff;
        border-radius: 50%;
        font-size: 1.2rem;
        color: #fff;
        transition: 0.3s ease;
    }

        /* Facebook */
        .asf-social-links a:nth-child(1) {
            background: #1877F2;
        }

        /* X (Twitter) */
        .asf-social-links a:nth-child(2) {
            background: #000000;
        }

        /* Instagram */
        .asf-social-links a:nth-child(3) {
            background: #E4405F;
        }

        /* YouTube */
        .asf-social-links a:nth-child(4) {
            background: #FF0000;
        }

        /* Threads */
        .asf-social-links a:nth-child(5) {
            background: #000000;
        }

        /* LinkedIn */
        .asf-social-links a:nth-child(6) {
            background: #0A66C2;
        }

        .asf-social-links a:hover {
            opacity: 0.85;
        }


/* Privacy & Policy Page  */
.privacy-content-wrapper {
  background: var(--color-light-bg);
  border-radius: var(--radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.privacy-page-title-section {
  background: linear-gradient(135deg, var(--color-dark) 0%, #2c3e50 100%);
  color: white;
  padding: 2rem;
  text-align: center;
}

.privacy-title-description {
  opacity: 0.8;
  font-size: 1.1rem;
  text-align:justify;
}

.privacy-main-content {
  padding: 2rem;
}

.privacy-last-updated-notice {
  background: #f8f9fa;
  padding: 1rem 2rem;
  border-left: 4px solid var(--color-red);
  margin-bottom: 2rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.privacy-policy-section {
  margin-bottom: 1rem;
  animation: privacySectionSlideIn 0.6s ease-out;
}

@keyframes privacySectionSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.privacy-section-heading {
  color: var(--color-dark);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-red);
  position: relative;
}

.privacy-section-heading::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--color-red);
  border-radius: 2px;
}

.privacy-sub-heading {
  color: var(--color-dark);
  font-size: 1.3rem;
  font-weight: 500;
  margin: 1.5rem 0 1rem 0;
}

.privacy-section-paragraph {
  margin-bottom: 1rem;
  text-align: justify;
}

.privacy-info-list {
  margin: 1rem 0;
  padding-left: 2rem;
}

.privacy-list-item {
  margin-bottom: 0.5rem;
  position: relative;
}

.privacy-list-item::marker {
  color: var(--color-red);
}
    .privacy-list-item ul li{
        margin-left:15px;
    }
    .privacy-highlight-box {
        background: linear-gradient(135deg, #fff5e6 0%, #ffe0b3 100%);
        border: 1px solid var(--color-red);
        border-radius: var(--radius);
        padding: 1.5rem;
        margin: 1.5rem 0;
        position: relative;
        overflow: hidden;
    }

.privacy-highlight-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-red);
}

.privacy-contact-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: var(--radius);
  padding: 2rem;
  margin-top: 2rem;
  border: 1px solid var(--light-gray);
}

.privacy-contact-heading {
  color: var(--color-dark);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

.privacy-contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.privacy-contact-item {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.privacy-contact-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
}

.privacy-contact-label {
  font-weight: 600;
  color: var(--color-red);
  margin-bottom: 0.5rem;
}

.privacy-contact-value {
  color: var(--text);
}

/* Terms Of Service Page  */
.terms-content-wrapper {
  background: var(--color-light-bg);
  border-radius: var(--radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.terms-page-title-section {
  background: linear-gradient(135deg, var(--color-dark) 0%, #2c3e50 100%);
  color: white;
  padding: 2rem;
  text-align: center;
}

.terms-title-description {
  opacity: 0.8;
  font-size: 1.1rem;
}

.terms-main-content {
  padding: 2rem;
}

.terms-last-updated-notice {
  background: #f8f9fa;
  padding: 1rem 2rem;
  border-left: 4px solid var(--color-red);
  margin-bottom: 2rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.terms-service-section {
  margin-bottom: 1rem;
  animation: termsServiceSlideIn 0.6s ease-out;
}

@keyframes termsServiceSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.terms-section-heading {
  color: var(--color-dark);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-red);
  position: relative;
}

.terms-section-heading::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--color-red);
  border-radius: 2px;
}

.terms-sub-heading {
  color: var(--color-dark);
  font-size: 1.3rem;
  font-weight: 500;
  margin: 1.5rem 0 1rem 0;
}

.terms-section-paragraph {
  margin-bottom: 1rem;
  text-align: justify;
}

.terms-info-list {
  margin: 1rem 0;
  padding-left: 2rem;
}

.terms-list-item {
  margin-bottom: 0.8rem;
  position: relative;
}

.terms-list-item::marker {
  color: var(--color-red);
}

.terms-highlight-box {
  background: linear-gradient(135deg, #fff5e6 0%, #ffe0b3 100%);
  border: 1px solid var(--color-red);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
  position: relative;
  overflow: hidden;
}

.terms-highlight-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-red);
}

.terms-important-notice {
  background: linear-gradient(135deg, #ffe6e6 0%, #ffcccc 100%);
  border: 1px solid #e74c3c;
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
  position: relative;
  overflow: hidden;
}

.terms-important-notice::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #e74c3c;
}

.terms-contact-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: var(--radius);
  padding: 2rem;
  margin-top: 2rem;
  border: 1px solid var(--light-gray);
}

.terms-contact-heading {
  color: var(--color-dark);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

.terms-contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.terms-contact-item {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.terms-contact-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
}

.terms-contact-label {
  font-weight: 600;
  color: var(--color-red);
  margin-bottom: 0.5rem;
}

.terms-contact-value {
  color: var(--text);
}

.terms-foundation-name {
  color: var(--color-red);
  font-weight: 600;
}

.terms-definition-box {
  background: linear-gradient(135deg, #e8f5e8 0%, #d4f1d4 100%);
  border: 1px solid #27ae60;
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
  position: relative;
  overflow: hidden;
}

.terms-definition-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #27ae60;
}

/* Refund Policy Page  */
.refund-content-wrapper {
  background: var(--color-light-bg);
  border-radius: var(--radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.refund-page-title-section {
  background: linear-gradient(135deg, var(--color-dark) 0%, #2c3e50 100%);
  color: white;
  padding: 2rem;
  text-align: center;
}

.refund-main-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.refund-title-description {
  opacity: 0.8;
  font-size: 1.1rem;
}

.refund-main-content {
  padding: 2rem;
}

.refund-last-updated-notice {
  background: #f8f9fa;
  padding: 1rem 2rem;
  border-left: 4px solid var(--color-red);
  margin-bottom: 2rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.refund-policy-section {
  margin-bottom: 3rem;
  animation: refundPolicySlideIn 0.6s ease-out;
}

@keyframes refundPolicySlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.refund-section-heading {
  color: var(--color-dark);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-red);
  position: relative;
}

.refund-section-heading::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--color-red);
  border-radius: 2px;
}

.refund-sub-heading {
  color: var(--color-dark);
  font-size: 1.3rem;
  font-weight: 500;
  margin: 1.5rem 0 1rem 0;
}

.refund-section-paragraph {
  margin-bottom: 1rem;
  text-align: justify;
}

.refund-info-list {
  margin: 1rem 0;
  padding-left: 2rem;
}

.refund-list-item {
  margin-bottom: 0.8rem;
  position: relative;
}

.refund-list-item::marker {
  color: var(--color-red);
}

.refund-highlight-box {
  background: linear-gradient(135deg, #fff5e6 0%, #ffe0b3 100%);
  border: 1px solid var(--color-red);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
  position: relative;
  overflow: hidden;
}

.refund-highlight-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-red);
}

.refund-important-notice {
  background: linear-gradient(135deg, #ffe6e6 0%, #ffcccc 100%);
  border: 1px solid #e74c3c;
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
  position: relative;
  overflow: hidden;
}

.refund-important-notice::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #e74c3c;
}

.refund-success-box {
  background: linear-gradient(135deg, #e8f5e8 0%, #d4f1d4 100%);
  border: 1px solid #27ae60;
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
  position: relative;
  overflow: hidden;
}

.refund-success-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #27ae60;
}

.refund-process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.refund-step-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
  border-top: 4px solid var(--color-red);
}

.refund-step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

.refund-step-number {
  background: var(--color-red);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.refund-step-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.refund-step-description {
  color: var(--text);
  font-size: 0.95rem;
}

.refund-contact-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: var(--radius);
  padding: 2rem;
  margin-top: 2rem;
  border: 1px solid var(--light-gray);
}

.refund-contact-heading {
  color: var(--color-dark);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

.refund-contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.refund-contact-item {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.refund-contact-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
}

.refund-contact-label {
  font-weight: 600;
  color: var(--color-red);
  margin-bottom: 0.5rem;
}

.refund-contact-value {
  color: var(--text);
}

.refund-timeline-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.refund-table-header {
  background: var(--color-red);
  color: white;
}

.refund-table-header th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

.refund-table-row td {
  padding: 1rem;
  border-bottom: 1px solid #eee;
}

.refund-table-row:last-child td {
  border-bottom: none;
}

.refund-table-row:nth-child(even) {
  background: #f8f9fa;
}

/* Initiatives Page */
.education-hero-banner {
  background: linear-gradient(135deg, var(--color-red) 0%, #e67e22 100%);
  color: white;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
  border-radius: var(--radius);
}

.education-hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M30 10l5 10h10l-8 6 3 9-10-7-10 7 3-9-8-6h10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  animation: educationHeroFloat 15s ease-in-out infinite;
}

@keyframes educationHeroFloat {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

.education-hero-content {
  position: relative;
  z-index: 2;
}

.education-hero-subtitle {
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 300;
  margin-bottom: 1rem;
}

.education-stats-banner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}

.education-stat-item {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.education-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
}

.education-stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 0.5rem;
}

.education-content-grid {
/*  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;*/
}

.education-main-content {
  background: white;
  border-radius: var(--radius);
/*  padding: 10px;*/
}

.education-sidebar-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.education-section-heading {
  color: var(--color-dark);
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.education-section-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--color-red);
  border-radius: 2px;
}

.education-intro-text {
  font-size: 1rem;
  color: var(--text);
  text-align: justify;
}

.education-programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 2rem 0;
}

.education-program-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.education-program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-red), #e67e22);
}

.education-program-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.education-program-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-red), #e67e22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: white;
}

.education-program-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 1rem;
}

.education-program-description {
  color: var(--text);
  margin-bottom: 1.5rem;
}

.education-program-beneficiaries {
  background: #f8f9fa;
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--color-red);
  font-weight: 600;
  display:none;
}

.education-action-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  text-align: center;
}

.education-action-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 1rem;
}

.education-action-description {
  color: var(--text);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.education-action-button {
  background: linear-gradient(135deg, var(--color-red), #e67e22);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}

.education-action-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(251, 154, 37, 0.4);
}

/* 
.education-story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.education-story-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.education-story-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

.education-story-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--color-red);
}

.education-story-content {
  padding: 1.5rem;
}

.education-story-quote {
  font-style: italic;
  color: var(--text);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.education-story-author {
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.education-story-location {
  color: var(--gray);
  font-size: 0.9rem;
} */

.education-impact-metrics {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  /* margin: 2rem 0; */
}

.education-metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 1.5rem;
}

.education-metric-item {
  text-align: center;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.education-metric-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-red), #e67e22);
}

.education-metric-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-red);
  display: block;
  margin-bottom: 0.5rem;
}

.education-metric-label {
  color: var(--text);
  font-weight: 500;
}

.education-current-campaigns {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
}

.education-campaign-item {
  padding: 1.5rem;
  border: 1px solid #eee;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.education-campaign-item:last-child {
  margin-bottom: 0;
}

.education-campaign-title {
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.education-campaign-progress {
  width: 100%;
  height: 8px;
  background: #eee;
  border-radius: 4px;
  margin: 1rem 0;
  overflow: hidden;
}

.education-campaign-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--color-red), #e67e22);
  border-radius: 4px;
  transition: width 0.5s ease;
}

.education-campaign-stats {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--gray);
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .mobile-toggle {
    display: block;
  }

  .container {
    padding: 40px 10px
  }

  .blog-layout {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    background: var(--color-light-bg);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.show {
    max-height: 1000px;
  }

  .nav-menu {
    padding-bottom: 10px;
    gap: 0;
  }

  .nav-menu li {
    width: 100%;
  }

  .donate-btn {
    text-align: center;
  }

  .nav-menu a {
    padding: 8px 10px;
    display: block;
    width: 100%;
    border-top: 1px solid #eee;
  }

  .has-submenu .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    padding: 0;
  }

  .has-submenu.open .submenu {
    display: block;
  }

  .submenu a {
    padding-left: 35px;
  }
}

@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 40px;
        margin-bottom: -15px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 15px;
        line-height: 1.5;
    }

    .hero-cta a {
        padding: 6px 16px;
        font-size: 14px;
    }
    .gallery-image-wrapper img {
        height: 260px;
    }

    .custom-lightbox-img {
        max-width: 95%;
        max-height: 70vh;
    }

  .breadcrumb-title {
    font-size: 1.8rem;
    text-align: center;
  }
    .form-title > h2 {
        font-size: 1.5rem !important;
        text-align: center;
    }
    .breadcrumb {
        justify-content: center;
        font-size: 0.85rem;
    }
    .breadcrumb li
  {
        text-align:center;
    }  .section-title,
    .title, .asf-volunteer-heading {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 5px;
    }
    .section-title, .about-text {
        text-align: center !important;
    }
    .education-section-heading,
    .cta-title,
    .nsf-cta-heading,
    .privacy-section-heading,
    .terms-section-heading,
    .refund-section-heading {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 8px;
        text-align: center;
    }

  /* Navigation & Topbar */
  .nav-menu a {
    width: 95%;
    margin: 0 auto;
  }
    .topbar{
        padding:5px !important;
    }
        .topbar .left {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
            color: var(--color-light-bg);
            font-size: 14px;
            line-height:normal;
        }
    .top-icons {
        display: none;
    }

  .main-navbar .container {
    padding: 5px 10px;
  }


  /* Containers */
  .container,
  .asf-volunteer-section,
  .cta-wrapper,
  .video-section,
  .privacy-main-content,
  .terms-main-content,
  .refund-main-content {
    padding: 30px 10px;
  }

  .cta-wrapper {
    gap: 10px;
    text-align: center;
  }

  .cta-content,
  .video-section, .asf-volunteer-container {
    padding: 0;
  }

  .cta-action {
    flex-wrap: nowrap;
  }

  .cta-btn {
    padding: 10px 20px;
    display: block;
  }

  /* About Section */
  .about-foundation-container {
    flex-direction: column-reverse;
    gap: 20px;
  }

  .about-images {
    flex: 1 1 auto;
    text-align: center;
  }

  .about-images .sub-img {
    display: none;
  }
    .mile-img-container {
        justify-content: flex-start;
    }
  /* Footer */
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-about .footer-logo {
    max-width: 100%;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Stats Section */
  .stat-grid {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 20px;
    padding: 0 10px;
    justify-content: flex-start;
  }

  .stat-item {
    flex: 0 0 auto;
    width: 160px;
    min-width: 160px;
  }

  .stat-icon i {
    font-size: 28px;
    margin-bottom: 10px;
  }
    .stat-icon img{
        height:50px;
        width:50px;
        object-fit:cover;
    }
    .stat-count {
        font-size: 28px;
    }

  .red-plus {
    font-size: 20px;
  }

  .stat-label {
    font-size: 16px;
  }

  .divider {
    width: 1px;
    height: 50px;
  }


  /* Video Section */
  .video-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .play-btn {
    width: 60px;
    height: 60px;
  }

  .play-btn::after {
    border-left: 16px solid var(--color-red);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
  }

  .modal-content {
    margin: 10% auto;
    width: 95%;
  }

  /* Forms */
  .asf-form .form-row {
    flex-direction: column;
  }

  .asf-contact-form-wrapper {
    flex-direction: column;
  }

    .contact-form,
    .contact-details {
        width: 100%;
        padding: 10px;
    }

  /* Volunteer Section */
  .asf-awards-stats,
  .asf-volunteer-image img {
    display: none;
  }

  .asf-volunteer-flex {
    flex-direction: row;
    gap: 20px;
  }

  .asf-volunteer-row,
  .asf-volunteer-flex,
  .asf-history-flex,
  .asf-faq-container {
    flex-direction: column;
  }

  /* History / Timeline */
  .asf-history-text {
    min-width: auto;
  }

  .asf-timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 20px;
    text-align: left !important;
  }

  .asf-timeline-item.left,
  .asf-timeline-item.right {
    left: 0;
  }

  .asf-timeline-list-alt::before {
    left: 20px;
  }

  .asf-timeline-item::before {
    left: 10px !important;
    right: auto;
  }

  .asf-timeline-content {
    margin-bottom: 10px;
  }

  /* Directors Section */
  .asf-directors-grid {
    flex-direction: column;
  }

  .asf-director-card,
  .asf-director-card.right {
    flex-direction: column !important;
    text-align: center;
    padding: 25px;
  }

  .asf-director-image {
    margin: 0 0 20px 0;
    width: 150px;
    height: 150px;
  }

  .asf-director-content {
    padding: 0;
  }

  .asf-director-msg {
    padding-left: 0;
    text-align: left;
  }

  .asf-director-msg::before {
    left: 50%;
    transform: translateX(-50%);
    top: -20px;
  }

  .asf-awards-timeline {
    margin-top: 20px;
  }

  /* Education Section */
  .education-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .education-main-content,
  .education-program-card,
  .education-impact-metrics,
  .education-current-campaigns {
    padding: 1rem;
  }

  .education-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
    margin-top: 1.5rem;
  }

  /* Blog / Gallery / Misc */
  .blog-detail-image {
    height: 300px;
  }

  .gallery-item,
  .pub-item {
    padding: 10px;
    gap: 5px;
  }

  /* Contact & Legal Pages */
  .privacy-contact-section,
  .terms-contact-section,
  .refund-contact-section {
    padding: 10px;
  }
  .asf-faq-question {
    padding: 10px;
  }
}
@media (max-width: 480px) {
    .banner {
        gap: 10px;
        flex-direction: column;
        padding: 10px;
        height: auto;
    }
    .m-d-none {
        display: none !important;
    }
    .hero-img {
        width:100%;
        height: auto;
    }
    .hero-content{
        text-align:center;
        width: 100%;
        padding:10px;
    }

        .hero-content h2 {
        font-size: 32px;
        margin-bottom: -10px;
    }

    .hero-content h1 {
        font-size: 22px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }

        .hero-cta a {
            width: 100%;
            max-width: 220px;
            text-align: center;
        }
    .gallery-image-wrapper img {
        height: 300px;
    }

    .custom-lightbox-prev, .custom-lightbox-next {
        font-size: 22px;
    }
    .section-text, .about-content {
        text-align: center;
    }
    .education-metrics-grid {
        grid-template-columns:auto;
    }
}